Preparing for the Magento 2 Adobe Certified Expert – Adobe Commerce Developer exam will take some time to read and absorb all the required information for yourself. I think it is better to keep a bookmark for this article and read line by line while you’re doing the studies of the below content. You may need to be more focused on the below areas before you sit on the exam. In short, I will highly recommend, you will need to read four to five times the Swiftotter study guide and do their sample test exams. Also if possible to do other sample test exams before you do the real exam. It will improve your confidence to face the exam. Here are few high light areas on Magento 2 that you may need to focus on. You will need some more time to google these and absorb the content. How p
I was pretty tired of waiting to activate my debug pointer in PHPStorm editor while I was debugging the code. I was out of a clue at that time. Why is this taking this much time to come to the breakpoint line of the code? Have you ever experience this situation? You are in the right place to know how we can mitigate it. The root cause was it would create a list of pointers in the PHPStorm when we add the debug breakpoints in the code. Then once we enable the debug and execute the code, it will go through all of those pointers, and if there are a list of breakpoints it will take ages to come to your debug location. The simple solution to prevent this situation is to remove if you have any unnecessary break pointers from the list. You can speed up the debug process in PHP Strom if you hav
Recently (In 2021), I passed South Australia driving license theory test. So I thought it would be nice to share with you my experience & what study materials I studied for the test. If you are planning to do the theory test, review these resources and I am pretty sure it will be easy for you. Practice Learner’s Theory Test The theory exam had 42 questions and as I remember you might need to provide at least 35 correct answers from the total questions. Must read this Drivers Handbook – https://www.mylicence.sa.gov.au/__data/assets/pdf_file/0004/328504/MR200_Drivers_Handbook.pdfThe overall scope of the exam – https://mylicence.sa.gov.au/my-car-licenceMust do – https://mylicence.sa.gov.au/my-car-licence/practice-theory-testSample questions – https://www.b
Today I thought I should change my console look and feel with some fancy colours! I searched and asked from few friends what could be suitable plugins that I can use. After a few hours later, I realize OH MY ZSH would be the ideal tool for me. I hope it will match for you too. So I will tell you which things I have done to configure it in my Linux environment. I used its agnoster theme & it is quite attractive from others. Finally, it will look like this after you applied. You need to follow below steps; Install required packages if not already installed 2. Install Terminator console if you would be interested 3. Install the OH MY ZSH package All the required configurations are in ~/.zshrc file ZSH_THEME=”agnoster”. You can view the configuration file using VI editor vi
Today I thought to share some tips and tricks to easily set up the Magento 2 e-commerce web application. We will use the Apache2 Server and MySQL database as the background environment. You can follow the below steps to easily set up the development environment. Steps to follow; Set up Apache2 and MySQL servers Install PHP 7.1.33 version Install PHP Xdebug Run composer and download the vendor files Setup the Magento 2 installation configurations Set up Apache2 and MySQL servers It is easy to install these two servers by using below linux terminal commands. After installed the Apache2 and MySQL servers, you will have to set up your hosts’ file and apache2 virtual host file to create a domain name for your Magento 2 e-commerce web application. You can add the below configurations to
Today was one of my happiest days! Because we could save a little birdie. It was a Red-vented bulbul. It was like 4 weeks old and you can see its photos below. The red-vented bulbul bird is a common breed in the Indian subcontinent including Sri Lanka. Also, they are identifying as songbirds according to Wikipedia. Because their tweets make our minds calm down. It was the summertime between March and April in Sri Lanka. Red-vented bulbul couple had created their nest in ceiling hanging light. Today morning, I heard a scream like in a dream about saying there is a little birdie on the floor. So I just woke up and ran to see what happened then saw this little birdie. I could put it on the cotton with the support of my family including my wife. We had to bring a long ladder to climb up and
Have you ever tried to set up your Magento web application on Docker? Okay, today I thought to share tips to easily set up the Magento application on Docker. Please comment and let me know if you would get any issues while you are trying to set up the Docker-based Magento Application. What is Docker? Docker is similar to a container that carries all the environment with its components including the Operating System. We could build a Docker image by Dockerfile with including all the OS services, other application services (MySQL, Elasticsearch, etc) which we want to run for our web application on docker. Docker images will work similarly to Bitbucket archives in Docker Center. Docker Container is the framework for running our web application and by using the docker image. We co
One day, I noticed that already showed products are not showing in the product search result page of the e-commerce Magento web application. This web application has implemented the Alogila Search Engine. Therefore, today I thought I should tell you about how could I fix that Algolia search engine not showing the result for newly added or previously added products on the Magento eCommerce website. I am not sure that you may already know this but I thought it will be worthwhile to let you if you wouldn’t know it. What is Algolia? Algolia is a product search engine tool that we can implement on Magento eCommerce websites to use as the product search module. This Algolia tool will be an elastic search engine and all the product information will be indexed in their platform. For insta